![]() |
tokenUnknown |
Header: Script.h |
enum { tokenUnknown = 0, tokenWhite = 1, tokenLeftLit = 2, tokenRightLit = 3, tokenAlpha = 4, tokenNumeric = 5, tokenNewLine = 6, tokenLeftComment = 7, tokenRightComment = 8, tokenLiteral = 9, tokenEscape = 10, tokenAltNum = 11, tokenRealNum = 12, tokenAltReal = 13, tokenReserve1 = 14, tokenReserve2 = 15, tokenLeftParen = 16, tokenRightParen = 17, tokenLeftBracket = 18, tokenRightBracket = 19 };
Has no existing token type.
Represents a whitespace character.
Represents an opening literal marker.
Represents a closing literal marker.
Represents an alphabetic token.
Represents a numeric token.
Represents a new line.
Represents an opening comment marker.
Represents a closing comment marker.
Represents a literal token.
Represents an escape character.
Represents an alternate number (such as at $B0–$B9).
Represents a real number.
Represents an alternate real number.
Reserved.
Reserved.
Represents an opening parenthesis.
Represents an opening square bracket.
Represents a closing square bracket.
© 2000 Apple Computer, Inc. — (Last Updated 4/14/2000)